home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d17 / ljetfon6.arc / FONTID.DOC < prev    next >
Text File  |  1990-11-29  |  3KB  |  83 lines

  1. Description:
  2.  
  3.      FONTID and FONTPM - Utility programs to simplify downloading of
  4.                          fonts to HP LaserJet II and Plus.
  5.  
  6.      These programs replace the BASIC routines supplied by HP with each
  7.      soft font package.  The advantage of these routines over the HP
  8.      ones is that they are command line driven, so that you may
  9.      construct a batch file to download a set of fonts automatically.
  10.  
  11. Usage:
  12.      This set of three commands downloads a font to the LaserJet.
  13.         FONTID nn >PRN
  14.         COPY /B hpfont PRN
  15.         FONTPM nn >PRN
  16.  
  17. Parameters:
  18.         nn              a font number.  Any font number allowed by HP
  19.                         is permitted (1-32767 on LaserJet II)
  20.         hpfont          name of an HP font file.  E.g., HV120RPN.USP.  Paths
  21.                         are allowed.
  22.  
  23. Operation:
  24.         FONTID sends the escape sequence to the printer to assign the
  25.                number to the font.
  26.         FONTPM marks the font as permanent.
  27.  
  28. Sample batch file to download fonts:
  29.  
  30.  ECHO OFF
  31.  CLS
  32.  REM
  33.  REM   This is LOAD.BAT, which downloads Prestige Elite fonts.
  34.  REM   Only USASCII fonts are downloaded to conserve space.
  35.  REM
  36.  echo Loading Prestige Elite 7 point, 16 pitch, Regular, Portrait
  37.  fontid 20 >PRN
  38.  COPY /B D:\U\HP\PR070R16.USP PRN > NUL
  39.  fontpm 20 >PRN
  40.  rem
  41.  echo Loading Prestige Elite 10 point, 12 pitch, Regular, Portrait
  42.  fontid 21 >PRN
  43.  COPY /B D:\U\HP\PR100R12.USP PRN > NUL
  44.  fontpm 21 >PRN
  45.  rem
  46.  echo Loading Prestige Elite 10 point, 12 pitch, Bold, Portrait
  47.  fontid 22 >PRN
  48.  COPY /B D:\U\HP\PR100B12.USP PRN > NUL
  49.  fontpm 22 >PRN
  50.  
  51. Copyright:
  52.  
  53.         FONTID.EXE, FONTPM.EXE, FONTID.DOC
  54.         (c) Copyright 1987 Software Architects Inc.
  55.  
  56.         Permission is granted for personal use.  These programs may be
  57.         given to others at no charge, provided that all three files are
  58.         kept together, that no modifications are made, and that the
  59.         copyright and contact information is not altered in any way.
  60.  
  61.         These programs may not be sold, nor incorporated in any product
  62.         for sale, nor included on any disk for which a fee is charged
  63.         without prior written permission of the author.
  64.  
  65.         These programs are made available "AS IS", and without warranties
  66.         as to performance, merchantability, fitness for purpose, or other
  67.         warranties whether express or implied.  In no event shall Software
  68.         Architects Inc. or Guy Scharf be held liable for any loss of profit
  69.         or any other damage resulting from the use or misuse of this
  70.         product, including but not limited to special, incidental,
  71.         consequential, or other damages.  The user assumes the entire
  72.         risk of using this program.  Any liability of seller will be
  73.         limited exclusively to product replacement or refund of purchase
  74.         price.
  75.  
  76. Author:
  77.         Guy Scharf
  78.         Software Architects Inc.
  79.         2163 Jardin Drive
  80.         Mountain View, CA  94040
  81.         CompuServe 76010,3250
  82.  
  83.